root = tk.Tk()
root.title("MINEZUQ启动器")
root.geometry("600x400")

def lang():
	b=open(str(muqianwenjianmulu)+'lang_shezhi.txt', 'rb')
	b=b.read()
	print(b)
    	#exec(b)
label = tk.Label(root, text=str(lang['shezhi'][0]),font=("Arial", 14), fg="blue")
label.pack(pady=10)  # 自动填充布局
button = tk.Button(root, text=str("语言"))
button.pack(pady=10)
label = tk.Label(root, text=str(lang['shezhi'][1])+muqianwenjianmulu)
label.pack()